home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Visualizador de Figuras para Windows"
- ClientHeight = 2865
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 6975
- Height = 3270
- Left = 1080
- LinkTopic = "Form1"
- ScaleHeight = 2865
- ScaleWidth = 6975
- Top = 1170
- Width = 7095
- Begin VB.DriveListBox Drive1
- Height = 315
- Left = 1920
- TabIndex = 2
- Top = 2400
- Width = 1935
- End
- Begin VB.DirListBox Dir1
- Height = 2055
- Left = 1920
- TabIndex = 1
- Top = 120
- Width = 1935
- End
- Begin VB.FileListBox File1
- Height = 2595
- Left = 120
- Pattern = "*.bmp"
- TabIndex = 0
- Top = 120
- Width = 1695
- End
- Begin VB.Image Image1
- BorderStyle = 1 'Fixed Single
- Height = 2655
- Left = 3960
- Stretch = -1 'True
- Top = 120
- Width = 2895
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Dir1_Change()
- File1.Path = Dir1.Path
- ChDir Dir1.Path
- End Sub
- Private Sub Drive1_Change()
- Dir1.Path = Drive1.Drive
- ChDrive Drive1.Drive
- End Sub
- Private Sub File1_Click()
- Image1.Picture = LoadPicture(File1.filename)
- End Sub
-